Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Node transformation stream that will strip a UTF-8 Byte Order Mark from the beginning.
Node.js transformation stream that will strip a UTF-8 Byte Order Mark from the beginning.
If you are dealing with text files that are edited and may include a Byte Order Mark (BOM) from the editor, this transform will easily remove those for use by the rest of your utility. This is especially useful when accessing files created with editors in Windows, which will often be saved as UTF-8 with BOM.
var fs = require('fs');
var bomstrip = require('bomstrip');
var stripped_stream = fs.createReadStream("path/to/file").pipe(new bomstrip());
npm install --save bomstrip
TODO: Need to add unit tests, this is a very simple Transform stream that will simply strip the UTF-8 BOM bytes from the first portion of the stream. Pull request(s) welcome.
FAQs
Node transformation stream that will strip a UTF-8 Byte Order Mark from the beginning.
The npm package bomstrip receives a total of 1,576 weekly downloads. As such, bomstrip popularity was classified as popular.
We found that bomstrip demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.